home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / courier_overflows.nasl < prev    next >
Text File  |  2005-01-14  |  1KB  |  54 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4.  
  5. if(description)
  6. {
  7.  script_id(12102);
  8.  script_bugtraq_id(9845);
  9.  script_version("$Revision: 1.3 $");
  10.  
  11.  name["english"] = "Courier remote overflows";
  12.  script_name(english:name["english"]);
  13.  
  14.  desc["english"] = "
  15. The remote mail server is the Courier MTA. 
  16.  
  17. There is a buffer overflow in the conversions functions of this software
  18. which may allow an attacker to execute arbitrary code on this host.
  19.  
  20. Solution : Upgrade to Courier 0.45 or newer
  21. Risk factor : High";
  22.     
  23.  script_description(english:desc["english"]);
  24.  
  25.  summary["english"] = "Checks the version number"; 
  26.  script_summary(english:summary["english"]);
  27.  
  28.  script_category(ACT_GATHER_INFO);
  29.  
  30.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  31.  
  32.  family["english"] = "SMTP problems";
  33.  script_family(english:family["english"]);
  34.  script_dependencie("find_service.nes", "smtpserver_detect.nasl");
  35.  script_require_ports("Services/smtp", 25);
  36.  exit(0);
  37. }
  38.  
  39. #
  40. # The script code starts here
  41. #
  42.  
  43. include("smtp_func.inc");
  44.  
  45. port = get_kb_item("Services/smtp");
  46. if(!port) port = 25;
  47.  
  48. banner = get_smtp_banner(port:port);
  49. if(banner)
  50. {
  51.  if ( egrep(pattern:"220.*Courier 0\.([0-9]\.|[0-3][0-9]\.|4[0-4]\.)", string:banner) ) { security_hole(port); exit(0); }
  52.  
  53. }
  54.